home *** CD-ROM | disk | FTP | other *** search
/ PC for Alla 2005 May / PC för Alla 0505.iso / fullversioner / realsoft3d / data1.cab / Scripting / scripts / js / oops / r3slctbl.js < prev    next >
Encoding:
JavaScript  |  2005-04-04  |  1.4 KB  |  69 lines

  1.  
  2. // JavaScript wrapper for r3slctbl.h
  3. // Auto generated file, do not modify by hand
  4. // Copyright ⌐ 2004, Realsoft Graphics Oy
  5.  
  6. var R3_SLCTBL_H = 1;
  7. include("oops/r3root.js")
  8.  
  9.  
  10. var R3CLID_SLCTBL = 74;
  11.  
  12.  
  13.  
  14.  
  15. // Description: Select/deselect
  16. // Virtual method
  17.  
  18. R3SLCTBLM_SELECT = 74000;
  19.  
  20. function mR3SLCTBLM_SELECT() {
  21.   DoA(this.r3obj, 74000, 0, R3TID_INTEGER, 0);
  22. }
  23.  
  24. // Description: Get selection state
  25. // Virtual method
  26. // Returns: Boolean, true if selected
  27.  
  28. R3SLCTBLM_ISSELECTED = 74001;
  29.  
  30. function mR3SLCTBLM_ISSELECTED() {
  31.   return   DoA(this.r3obj, 74001, 0, R3TID_INTEGER, 0);
  32. }
  33.  
  34.  
  35.  
  36.  
  37. R3SLCTBLA_Manager = 74500;
  38. function SetR3SLCTBLA_Manager(value) {
  39.   R3Set(this.r3obj, R3SLCTBLA_Manager, value, R3TID_OBJECT, 0); 
  40. }
  41.  
  42. function GetR3SLCTBLA_Manager() {
  43.   return R3ToJS(R3Get(this.r3obj, R3SLCTBLA_Manager, R3TID_OBJECT, 0)); 
  44. }
  45.  
  46. R3SLCTBLA_GroupName = 74501;
  47. function SetR3SLCTBLA_GroupName(value) {
  48.   R3Set(this.r3obj, R3SLCTBLA_GroupName, value, R3TID_STRING, 0); 
  49. }
  50.  
  51. function GetR3SLCTBLA_GroupName() {
  52.   return R3Get(this.r3obj, R3SLCTBLA_GroupName, R3TID_STRING, 0); 
  53. }
  54.  
  55.  
  56.  
  57. function r3Slctbl () { 
  58.    // Methods
  59.    this.SELECT=mR3SLCTBLM_SELECT;
  60.    this.ISSELECTED=mR3SLCTBLM_ISSELECTED;
  61.  
  62.    // Attributes
  63.    this.GetManager=GetR3SLCTBLA_Manager;
  64.    this.SetManager=SetR3SLCTBLA_Manager;
  65.    this.GetGroupName=GetR3SLCTBLA_GroupName;
  66.    this.SetGroupName=SetR3SLCTBLA_GroupName;
  67. }
  68.  
  69. // r3slctbl.h_H